/*First View*/
.firstView_container{
    width: 100%;
    height: auto;
}

/*COMPANY PROFILE*/
.companyProfile_container{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    margin-top: 50px;
}

    .companyProfile_inner_container{
        width: 350px;
        height: 700px;
    }

        .inner_contents{
            width: 350px;
            height: 350px;
        }

        .companyProfile_image_container{
            background-image: url(../img/warehouse_w1179_h886.jpg);
            background-size: cover;
            background-position: center;
            display: grid;
            place-items: center;
        }

            .companyProfile_image_container h3{
                font-family: "Noto Sans JP", sans-serif;
                font-optical-sizing: auto;
                font-weight: 700;
                font-style: normal;
                font-size: 24px;
                color: #ffffff;

            }
        
        .companyProfile_contents_container{
            display: grid;
            place-items: center;
        }

            .companyProfile_contents_inner_container{
                width: 330px;
                height: 330px;
            }

                .companyProfile_contents_title_container{
                    width: 330px;
                    height: 30px;
                    display: grid;
                    place-items: center;
                }

                    .companyProfile_contents_title_container h3{
                        font-family: "Noto Serif JP", serif;
                        font-optical-sizing: auto;
                        font-weight: 700;
                        font-style: normal;
                        font-size: 20px;
                    }

                .companyProfile_contents_text_container{
                    width: 330px;
                    height: auto;
                }

                    .row_contents_box{
                        width: 100%;
                        height: 35px;
                        display: flex;
                        margin-top: 10px;
                        border-bottom: dashed #343434;
                    }

                        .left_contents_box{
                            width: 110px;
                            height: 35px;
                            display: grid;
                            place-items: center;
                        }

                        .right_contents_box{
                            width: 220px;
                            height: 30px;
                            display: flex;
                            align-items: center;
                        }

                            .left_contents_box p, .right_contents_box p{
                                font-family: "Noto Serif JP", serif;
                                font-optical-sizing: auto;
                                font-weight: 400;
                                font-style: normal;
                                font-size: 14px;
                            }

/*MOBILE SMALL*/
@media(max-width: 350px){
    .companyProfile_contents_text_container{
        width: 300px;
    }

    .companyProfile_contents_title_container{
        width: 280px;
    }

    .companyProfile_contents_inner_container{
        width: 280px;
    }

    .inner_contents{
        width: 300px;
    }

    .companyProfile_inner_container{
        width: 300px;
    }
}

/*DESKTOP*/
@media(min-width: 768px){
    .companyProfile_inner_container{
        width: 768px;
        height: 700px;
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        gap: 10px;
    }
}

/*FOOTER*/
.footer footer{
    width: 100%;
    height: 30px;
    background-color: #00009B;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

    .footer footer p{
        font-family: "Noto Serif JP", serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 14px;
        color: #ffffff;
    }